StackTrace

data class StackTrace(description: String?, callFrames: List<CallFrame>, parent: StackTrace?, parentId: StackTraceId?)

Call frames for assertions or error messages.

Constructors

StackTrace
Link copied to clipboard
fun StackTrace(description: String? = null, callFrames: List<CallFrame>, parent: StackTrace? = null, parentId: StackTraceId? = null)

Properties

callFrames
Link copied to clipboard
val callFrames: List<CallFrame>
JavaScript function name.
description
Link copied to clipboard
val description: String? = null
String label of this stack trace.
parent
Link copied to clipboard
val parent: StackTrace? = null
Asynchronous JavaScript stack trace that preceded this stack, if available.
parentId
Link copied to clipboard
val parentId: StackTraceId? = null
Asynchronous JavaScript stack trace that preceded this stack, if available.

Sources

jvm source
Link copied to clipboard